/** Shopify CDN: Minification failed

Line 436:8 Unexpected "{"
Line 436:12 Expected ":"
Line 442:8 Unexpected "{"
Line 442:12 Expected ":"
Line 448:8 Unexpected "{"
Line 448:12 Expected ":"
Line 454:10 Unexpected "{"
Line 454:14 Expected ":"
Line 461:10 Unexpected "{"
Line 461:14 Expected ":"
... and 2 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:main-search (INDEX:61) */
/* ==========================================================================
   Collection sidebar: Filters
   ========================================================================== */
.collection-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ==========================================================================
   Product grid
   ========================================================================== */
.product-grid.row {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 480px) {
  .product-grid.row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media screen and (min-width: 768px) {
  .product-grid.row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
}

@media screen and (min-width: 990px) {
  .product-grid-container .product-grid.row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .product-grid-container.grid-2-style .product-grid.row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-grid-container.grid-3-style .product-grid.row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .product-grid-container.grid-5-style .product-grid.row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.product-grid-container.list-style .product-grid.row {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.list-style .product-card {
  flex-direction: row;
  align-items: stretch;
}

.list-style .product-card__media-wrapper {
  width: 220px;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .list-style .product-card {
    flex-direction: column;
  }
  .list-style .product-card__media-wrapper {
    width: 100%;
  }
}

/* ==========================================================================
   Product card
   ========================================================================== */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.08);
  border-color: #e2e2e2;
  transform: translateY(-2px);
}

.product-card__media-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f6f6f4;
  overflow: hidden;
}

.product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.5s ease;
}

.product-card__image--primary {
  opacity: 1;
}

.product-card__image--secondary {
  opacity: 0;
}

.product-card__media-wrapper.has-second-image:hover .product-card__image--primary {
  opacity: 0;
}

.product-card__media-wrapper.has-second-image:hover .product-card__image--secondary {
  opacity: 1;
}

.product-card__media-wrapper:hover .product-card__image--primary {
  transform: scale(1.04);
}

.product-card__media-wrapper.has-second-image:hover .product-card__image--secondary {
  transform: scale(1.04);
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  color: #d8d8d3;
}

/* Badge */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-block;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 5px;
  color: #ffffff;
  background: #1f7a4d;
}

.product-badge--bestseller { background: #b3175f; }
.product-badge--sale { background: #2f9e44; }
.product-badge--bogo { background: #d13b2e; }
.product-badge--new { background: #1f7a4d; }

/* Wishlist heart */
.product-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}

.product-card__wishlist:hover {
  transform: scale(1.08);
}

.product-card__wishlist svg {
  width: 18px;
  height: 18px;
  color: #444444;
}

.product-card__wishlist[aria-pressed="true"] svg {
  color: #e0294b;
  fill: #e0294b;
}

/* Info block */
.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 16px 18px;
  flex: 1;
}

.product-card__vendor {
  margin: 0;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1f7a4d;
}

.product-card__title {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__title a {
  color: #1a1a1a;
  text-decoration: none;
}

.product-card__title a:hover {
  text-decoration: underline;
}

/* Star rating */
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-card__stars {
  --size: 14px;
  --gap: 2px;
  --star-color: #e2c53a;
  --star-empty: #dcdcdc;
  position: relative;
  display: inline-block;
  width: calc((var(--size) + var(--gap)) * 5 - var(--gap));
  height: var(--size);
  background: linear-gradient(90deg, var(--star-empty) 0 100%);
  -webkit-mask: repeating-linear-gradient(
    90deg,
    #000 0,
    #000 var(--size),
    transparent var(--size),
    transparent calc(var(--size) + var(--gap))
  );
  mask: repeating-linear-gradient(
    90deg,
    #000 0,
    #000 var(--size),
    transparent var(--size),
    transparent calc(var(--size) + var(--gap))
  );
}

.product-card__stars::before {
  content: '';
  position: absolute;
  inset: 0;
  width: calc(var(--rating, 0) / 5 * 100%);
  background: var(--star-color);
}

.product-card__stars::after {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%,
    21% 91%, 32% 57%, 2% 35%, 39% 35%
  );
}

.product-card__rating-count {
  font-size: 12px;
  color: #8c8c8c;
}

/* Price */
.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 2px;
}

.price {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.price--sale {
  color: #d13b2e;
}

.price--compare {
  font-size: 13px;
  font-weight: 500;
  color: #a3a3a3;
  text-decoration: line-through;
}

/* Add to basket */
.product-card__form {
  margin-top: 10px;
}

.product-card__add-btn {
  width: 100%;
  padding: 11px 14px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.product-card__add-btn:hover {
  background: #1f7a4d;
}

.product-card__add-btn:active {
  transform: scale(0.98);
}

.product-card__add-btn[disabled] {
  background: #cfcfcf;
  cursor: not-allowed;
}

@media screen and (min-width: 768px) and (max-width: 989px) {
  .facets-vertical {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    align-items: start;
  }
}

@media screen and (min-width: 990px) {
  .facets-vertical {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 32px;
    align-items: start;
    width: 100%;
  }
  .facets-vertical.filter_right {
    grid-template-columns: 1fr 270px;
  }
  .facets-vertical.filter_right .collection-sidebar {
    order: 2;
  }
  .collection-sidebar {
    position: sticky;
    top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .facets-vertical .collection-sidebar {
    margin-bottom: 20px;
  }
  .product-card__info {
    padding: 12px 12px 14px;
    gap: 5px;
  }
  .product-card__title {
    font-size: 13.5px;
  }
  .price {
    font-size: 14.5px;
  }
  .product-card__add-btn {
    padding: 9px 12px;
    font-size: 12.5px;
  }
}

.main-content-grid,
.main-content-grid .js_categories_content {
  width: 100%;
}

.main-content-grid .container {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.main-content-grid .container.full-width {
  max-width: 1920px;
}
/* END_SECTION:main-search */

/* START_SECTION:related-product-carousel (INDEX:84) */
/* =========================================
   RELATED PRODUCTS - SPACING FIX
   ========================================= */

/* Space between product description and Related Products */
#laber_{{sid}}.laber_collection_related {
  margin-top: 50px !important;
  padding-top: 0 !important;
}

/* Space between Related Products heading and products */
#laber_{{sid}}.laber_collection_related .wrap_title {
  margin-top: 0 !important;
  margin-bottom: 30px !important;
}

/* Make sure the section content does not pull upward */
#laber_{{sid}}.laber_collection_related .section-content {
  margin-top: 0 !important;
}

/* Desktop */
@media (min-width: 768px) {
  #laber_{{sid}}.laber_collection_related {
    margin-top: 50px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  #laber_{{sid}}.laber_collection_related {
    margin-top: 30px !important;
  }

  #laber_{{sid}}.laber_collection_related .wrap_title {
    margin-bottom: 20px !important;
  }
}
/* END_SECTION:related-product-carousel */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:quiz-banner-card (INDEX:279) */
.quiz-banner-card {
    display: block;
    height: 100%;
  }
  .quiz-banner-card__link {
    display: block;
    height: 100%;
    text-decoration: none;
  }
  .quiz-banner-card__inner {
    position: relative;
    height: 100%;
    min-height: 420px;
    border-radius: var(--alo-border-radius, 0px);
    overflow: hidden;
    background: #111;
  }
  .quiz-banner-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .quiz-banner-card__image--placeholder {
    background: #ddd;
  }
  .quiz-banner-card__overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: calc(var(--overlay-opacity, 20%) / 100);
    pointer-events: none;
  }
  .quiz-banner-card__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    color: var(--text-color, #fff);
    box-sizing: border-box;
  }
  .quiz-banner-card__eyebrow {
    margin: 0 0 12px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: inherit;
  }
  .quiz-banner-card__heading {
    margin: 0;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.15;
    font-weight: 500;
    color: inherit;
  }
  .quiz-banner-card__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    margin-top: 24px;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    background: var(--btn-bg, #111);
    color: var(--btn-color, #fff);
  }
  .quiz-banner-card__footer {
    margin: 24px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: inherit;
    opacity: 0.9;
    max-width: 90%;
  }
  @media screen and (max-width: 767px) {
    .quiz-banner-card__inner {
      min-height: 280px;
    }
    .quiz-banner-card__content {
      padding: 16px;
    }
    .quiz-banner-card__button {
      margin-top: 16px;
      padding: 10px 16px;
    }
    .quiz-banner-card__footer {
      display: none;
    }
  }
/* END_SNIPPET:quiz-banner-card */