/** Shopify CDN: Minification failed

Line 44:0 Unexpected "}"
Line 64:26 Expected ":"
Line 74:26 Expected ":"
Line 131:1 Expected "}" to go with "{"

**/
.product-v14__heading {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .product-v14__heading {
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
}

.product-v14__title {
  position: relative;
  padding-bottom: 2rem;
  margin: 0;
  font-size: calc(var(--font-heading-scale) * var(--font-body-scale) * 3rem);
  font-family: var(--font-custom-family);
}

/* @media (min-width: 768px) {
  .product-v14__title:after {
    position: absolute;
    display: inline-block;
    content: "";
    width: 5rem;
    height: 0.1rem;
    background-color: rgba(var(--color-accent));
    left: 0;
    bottom: 0;
  } */
}

.product-v14__tab {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  width: 40%;
  margin-bottom: 3rem;
}
@media (min-width: 576px) {
  .product-v14__tab {
    width: fit-content;
    margin: 0;
  }
}


.product-v14__tab {
  display: flex;
  flex-wrap: nowrap;   ✅ force row on mobile
  align-items: center;
  gap: 1rem;
  width: 100%;
  overflow-x: auto;    /* ✅ allow scroll if items overflow */
  margin-bottom: 3rem;
/* } */

@media (min-width: 576px) {
  .product-v14__tab {
    flex-wrap: wrap;   ✅ back to wrapping on desktop
    width: fit-content;
    margin: 0;
  }
}



.product-v14__tab-trigger {
  font-size: calc(var(--font-body-scale) * 1.6rem);
  font-weight: var(--font-heading-weight);
  color: rgba(var(--color-foreground));
  width: 100%;
  background-color: rgba(var(--color-foreground), 0.05);
  text-align: center;
  padding: 0.3rem 2rem;
  transition: 0.3s;
  border-radius: var(--buttons-radius);
}
@media (min-width: 576px) {
  .product-v14__tab-trigger {
    position: relative;
    background: none;
    width: fit-content;
  }
}

.product-v14__tab-trigger:not([xo-active]):hover {
  color: rgba(var(--color-accent));
}

.product-v14__tab-trigger[xo-active]:not([xo-active=false]) {
  background-color: rgba(var(--color-accent));
  color: #fff;
}

.product-v14__pagination {
  display: none;
}
@media (min-width: 576px) {
  .product-v14__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
  }
  .product-v14__pagination xo-carousel-bullet[xo-active]:not([xo-active=false]) .product-v14__bullet {
    background-color: rgba(var(--color-foreground));
  }
}

.product-v14__bullet {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: rgba(var(--color-foreground), 0.2);
}