/** Shopify CDN: Minification failed

Line 18:28 Expected identifier but found whitespace
Line 18:30 Unexpected "{"
Line 18:40 Expected ":"
Line 18:65 Expected ":"
Line 18:78 Expected identifier but found whitespace
Line 18:80 Unexpected "{"
Line 18:90 Expected ":"
Line 18:115 Expected ":"

**/
/* om-custom.css — consolidated custom styles, loaded once from theme.liquid. */
.loading { position: fixed; top: 0; left: 0; z-index: 99999; width: 100%; height: 100%; background: var(--bg); transition: opacity 0.2s ease-out, visibility 0.2s ease-out; }
body.is-loaded .loading { opacity: 0; visibility: hidden; pointer-events: none; }
.loading__image__holder { position: absolute; top: 0; left: 0; width: 100%; height: 100%; font-size: 0; display: flex; align-items: center; justify-content: center; }
.loading__image__holder:nth-child(2) { opacity: 0; }
.loading__image { max-width: {{ settings.loading_image_width }}px; max-height: {{ settings.loading_image_width }}px; object-fit: contain; }
.loading--animate .loading__image__holder:nth-child(1) { animation: pulse1 2s infinite ease-in-out; }
.loading--animate .loading__image__holder:nth-child(2) { animation: pulse2 2s infinite ease-in-out; }
@keyframes pulse1 {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes pulse2 {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}


/* Global chrome */
announcement-bar.announcement__bar-outer {
  margin: 5px;
  width: calc(100% - 10px);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

a[href*="/account"] {
  display: none;
}

.cart__item__content__left .cart__price {
  display: none;
}

.swatch__button,
.swatch__button label,
.swatch-input__label {
  border-radius: 4px;
}

.selector-wrapper--size .radio__legend__value,
.selector-wrapper[data-option-position="3"] .radio__legend__value {
  display: none;
}

/* Collection pages */
.collection-image-with-title.section-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.collection-image-with-title .collection__title--no-image {
  min-height: 70px;
  height: 70px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}

.collection-image-with-title .hero__title {
  margin: 0;
  line-height: 1;
}

.template-collection .collection__nav,
.template-search .collection__nav {
  position: static;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.template-collection .collection__nav *,
.template-search .collection__nav * {
  border: 0;
  box-shadow: none;
}

/* Product pages */
.product__tax {
  display: none;
}

:is(
  .product__subheading p,
  .block__icon__row,
  .badge-box,
  .badge-box-container .badge-box.custom-box
) {
  background: #fafafa;
  border-radius: 5px;
}

.product__subheading p {
  padding: 3px 14px;
  display: flex;
}

.block__icon__row {
  padding: 12px 14px;
}

@media (min-width: 750px) {
  product-images {
    padding-left: 6px;
  }

  .product__slides {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }

  .product__slide {
    padding: 0;
    margin: 0;
  }
}

@media (max-width: 749px) {
  product-thumbs figure {
    --aspect-ratio: 0.67;
  }
}

.related__products .tab-link {
  font-size: 10px;
}

/* Size-guide badge */
.omnana-model-sizeguide-badge {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 2px 9px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
  z-index: 99;
  pointer-events: none;
  text-align: center;
  max-width: 90%;
  box-sizing: border-box;
}

@media (min-width: 768px) and (max-width: 999.98px) {
  .omnana-model-sizeguide-badge {
    bottom: 22px;
    font-size: 11px;
    padding: 2px 8px;
  }
}

@media (max-width: 767.98px) {
  .omnana-model-sizeguide-badge {
    bottom: 12px;
    font-size: 11px;
    padding: 2px 8px;
  }
}

/* Back-in-stock modal */
#omnana-bis[hidden],
#omnana-bis-modal[hidden] {
  display: none;
}

#omnana-bis {
  width: 100%;
  margin-top: 10px;
}

#omnana-bis-open,
#omnana-bis-submit {
  width: 100%;
  min-height: 44px;
  padding: 10px 16px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: #212121;
  font: inherit;
  cursor: pointer;
}

#omnana-bis-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.45);
}

.omnana-bis-dialog {
  position: relative;
  width: min(440px, 100%);
  padding: 28px;
  background: #fff;
}

#omnana-bis-close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

#omnana-bis-email {
  width: 100%;
  margin: 14px 0 10px;
  padding: 12px;
  border: 1px solid #ccc;
}

#omnana-bis-message {
  margin: 10px 0 0;
}

/* Keep sold-out price visible (overrides theme dimming) — needs !important. */
.form__wrapper.variant--soldout .price.product__price,
.form__wrapper.variant--unavailable .price.product__price {
  opacity: 1 !important;
}

/* Fabric guide */
.omnana-fabric-video-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  align-items: stretch;
}

.omnana-fabric-card {
  background: #f7f5f1;
  padding: 28px 24px;
  width: 100%;
  font-family: inherit;
  color: #2f2f2f;
}

.omnana-fabric-card h2 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 24px;
}

.omnana-fabric-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 32px 0 12px;
}

.omnana-fabric-card p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.omnana-fabric-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.omnana-fabric-tag {
  border: 1px solid #2f2f2f;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.omnana-fabric-scale {
  margin-top: 34px;
}

.omnana-fabric-scale-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
}

.omnana-fabric-bars {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}

.omnana-fabric-bar {
  flex: 1;
  height: 4px;
  background: #e6e3df;
  border-radius: 20px;
}

.omnana-fabric-bar.active {
  background: #2f2f2f;
}

.omnana-fabric-labels {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 1.2;
}

.omnana-fabric-care-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.omnana-fabric-care-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  margin-bottom: 10px;
}

.omnana-fabric-care-icon {
  width: 18px;
  display: inline-flex;
  justify-content: center;
  font-size: 15px;
}

.omnana-fabric-media-box {
  width: 100%;
  background: #f7f5f1;
  overflow: hidden;
  min-height: 100%;
  position: relative;
}

.omnana-fabric-media-box img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 749px) {
  .omnana-fabric-video-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .omnana-fabric-card {
    padding: 28px 24px;
  }

  .omnana-fabric-media-box img {
    min-height: 520px;
  }
}

/* Sculpt feature */
.omnana-collection-feature {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0;
  margin: 0;
  font-family: inherit;
}

.omnana-collection-feature-image {
  position: relative;
  width: 100%;
  min-height: 720px;
  overflow: hidden;
  background: #f7f5f1;
}

.omnana-collection-feature-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.omnana-collection-feature-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.omnana-product-card {
  position: relative;
  background: #f7f5f1;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.omnana-product-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f7f5f1;
}

.omnana-product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.omnana-product-card:hover .omnana-product-image img {
  transform: scale(1.03);
}

.omnana-product-info {
  padding: 14px 0 0;
  background: #ffffff;
}

.omnana-product-title {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  margin: 0 0 6px;
  color: #2f2f2f;
}

.omnana-product-price {
  font-size: 14px;
  line-height: 1.3;
  margin: 0;
  color: #2f2f2f;
}

.omnana-product-price s {
  color: #8a8a8a;
  margin-right: 6px;
}

.omnana-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ffffff;
  color: #2f2f2f;
  font-size: 11px;
  line-height: 1;
  padding: 7px 10px;
  border-radius: 999px;
  z-index: 2;
}

@media screen and (max-width: 989px) {
  .omnana-collection-feature {
    grid-template-columns: 1fr;
  }

  .omnana-collection-feature-image {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }
}

@media screen and (max-width: 749px) {
  .omnana-collection-feature {
    gap: 12px;
  }

  .omnana-collection-feature-content {
    gap: 12px;
  }

  .omnana-product-info {
    padding-top: 10px;
  }

  .omnana-product-title,
  .omnana-product-price {
    font-size: 13px;
  }

  .omnana-product-badge {
    top: 8px;
    left: 8px;
    font-size: 10px;
    padding: 6px 9px;
  }
}

/* Social videos */
.custom-clickable-social-videos .custom-video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  width: 100%;
  padding: 0 5px;
  box-sizing: border-box;
}

.custom-clickable-social-videos .custom-video-gallery-item {
  width: 100%;
  min-width: 0;
}

.custom-clickable-social-videos .custom-social-video-link {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.custom-clickable-social-videos .custom-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 5px;
  background: #f5f5f5;
}

/* Full opacity over theme lazy-image reveal — needs !important. */
.custom-clickable-social-videos .custom-video-poster,
.custom-clickable-social-videos video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  filter: none !important;
}

.custom-clickable-social-videos video {
  display: none;
}

.custom-clickable-social-videos .custom-video-poster {
  display: block;
}

.custom-clickable-social-videos .custom-video-gallery-item.is-playing .custom-video-poster {
  display: none;
}

.custom-clickable-social-videos .custom-video-gallery-item.is-playing video {
  display: block;
}

@media only screen and (max-width: 749px) {
  .custom-clickable-social-videos .custom-video-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Coming-soon / Klaviyo buttons */
.btn.coming-soon-button {
  width: 100%;
  background: #fff;
  color: #212121;
  border: 1px solid #212121;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 1;
}

.klaviyo-popup-button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---------------------------------------------------------------------------
 * Collection filter/sort bar: remove the vertical separator lines
 * ---------------------------------------------------------------------------
 * Reported by Mike (2026-07-01 go-live testing): the FILTER and SORTIEREN NACH
 * controls each render a vertical divider line. Source is collection-bar.css:
 * the FILTER control (.popout--group .popout__toggle) has a border-right and the
 * SORT control (.popout--sort .popout__toggle) a border-left. Scoped under
 * .collection__nav so (a) only the bar's own toggles are affected, not the
 * slide-out sidebar or any other popout, and (b) the extra class outranks
 * collection-bar.css on specificity, so no !important is needed.
 */
.collection__nav .popout--group .popout__toggle,
.collection__nav .popout--sort .popout__toggle {
  border-left: none;
  border-right: none;
}
