/** Shopify CDN: Minification failed

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

**/
.product-information-tabs__header {
  display: flex;
  align-items: center;
  gap: 6.4rem;
  border-bottom: solid 0.1rem rgba(var(--color-foreground), 0.1);
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .product-information-tabs__header {
    justify-content: center;
  }
}

.product-information-tabs__trigger {
  position: relative;
  padding: 1.2rem 0;
  font-size: calc(var(--font-body-scale) * 1.8rem);
  font-weight: 500;
}

.product-information-tabs__trigger[xo-active]:not([xo-active=false]) {
  color: rgba(var(--color-foreground));
}

.product-information-tabs__trigger::after {
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  content: "";
  width: 0;
  height: 0.2rem;
  background-color: rgba(var(--color-foreground));
  transition: 0.3s;
}

.product-information-tabs__trigger[xo-active]:not([xo-active=false])::after {
  width: 100%;
}

.product-information-tabs__portal {
  z-index: 9;
  background-color: rgba(var(--color-background));
  border-radius: var(--modal-corner-radius);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  padding: 0.5rem 2rem;
}
.product-information-tabs__portal xo-list-item {
  border-bottom: solid 0.1rem rgba(var(--color-foreground), 0.1);
}
.product-information-tabs__portal xo-list-item:last-child {
  border: unset;
}

.product-information-tabs__toggle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: solid 0.1rem rgba(var(--color-foreground), 0.1);
  color: rgba(var(--color-foreground));
  background-color: rgba(var(--color-background));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  margin-left: 1rem;
  transition: 0.3s;
}

.product-information-tabs__toggle:hover {
  color: rgba(var(--color-background));
  background-color: rgba(var(--color-foreground));
  .product-information-tabs__toggle:hover {
    color: rgba(var(--color-background));
    background-color: rgba(var(--color-foreground));
}

/* =====================================
   M4 PRODUCT DESCRIPTION
===================================== */

.m4-product-description{
    display:block;
    max-width:900px;
    margin:40px auto;
    padding:40px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    box-sizing:border-box;
    font-size:17px;
    line-height:1.75;
    color:#333;
    text-align:left;
}

.m4-product-description p {
    margin: 0 0 20px;
    font-weight: 400;
}

.m4-product-description h2{
    font-size:32px;
    margin:48px 0 20px;
    font-weight:700;
    line-height:1.2;
}

.m4-product-description h3{
    font-size:24px;
    margin:36px 0 16px;
    font-weight:600;
    line-height:1.3;
}

.m4-product-description ul{
    margin:20px 0;
    padding-left:24px;
}

.m4-product-description li{
    margin-bottom:10px;
}