/** Shopify CDN: Minification failed

Line 91:14 Unexpected "{"
Line 91:23 Expected ":"
Line 92:18 Expected identifier but found whitespace
Line 92:20 Unexpected "{"
Line 92:29 Expected ":"
Line 92:80 Expected ":"
Line 93:21 Expected identifier but found whitespace
Line 93:23 Unexpected "{"
Line 93:32 Expected ":"
Line 93:86 Expected ":"
... and 10 more hidden warnings

**/
/* PRODUCT TABS */

.product-tabs__nav {
  display: flex;
  gap: 2rem;
  /* border-bottom: 1px solid #e5e5e5; */
  margin-bottom: 1.5rem;
}

.product-tabs__button {
  background: none;
  border: none;
  padding: 0.5rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  position: relative;
  transition: color 0.2s;
}

.product-tabs__button:hover {
  color: #000;
}

.product-tabs__button--active {
  color: #000;
  /* font-weight: 600; */
}

.product-tabs__button--active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #000;
}

.product-tabs__panel {
  display: none;
}

.product-tabs__panel--active {
  display: block;
}

.product-tabs span { 
    font-size: 16px;
    font-family: Assistant, sans-serif;
}

/* =========================== Dim & Mat section ========================================= */

.product-materials-wrapper, .product-dimensions-wrapper { 
  margin-top:64px !important;
}

  .product-dimensions-wrapper span, .product-materials-wrapper span { 
    font-size: 16px;
  }

  .product-dimensions, .product-materials {
  list-style: disc;
  padding: 0;
  margin: 1rem 0;
}

.product-dimensions li, .product-materials {
  margin-left: 2.5rem
}



    .section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
      padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
    }

    @media screen and (min-width: 750px) {
      .section-{{ section.id }}-padding {
        padding-top: {{ section.settings.padding_top }}px;
        padding-bottom: {{ section.settings.padding_bottom }}px;
      }
    }