/** Shopify CDN: Minification failed

Line 138:0 Unexpected "}"

**/
/* =========================
   PDP SAFE RESET
   ========================= */

/* Title (controlled but not breaking layout) */
.product__title h1,
.product__title {
  font-size: 2.6rem !important;
  line-height: 1.15 !important;
  margin-bottom: 12px !important;
}

/* Top Features */
.pdp-top-features {
  margin: 10px 0;
  padding-left: 18px;
}

.pdp-top-features li {
  font-weight: 600;
  margin-bottom: 6px;
  list-style: square;
}

.pdp-top-features li::marker {
  color: #E66426;
}

/* Value Line */
.pdp-value-line {
  font-weight: 600;
  border-left: 3px solid #E66426;
  padding-left: 10px;
  margin: 12px 0 18px;
  line-height: 1.4;
  max-width: 52ch;
}

/* Trust Row (clean + non-breaking) */
.pdp-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid #e5e5e5;
}

.pdp-trust {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: start; /* THIS pulls them left */
  gap: 2.4rem;
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid #e5e5e5;
}

.pdp-trust {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: start;
  gap: 2.4rem;
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid #e5e5e5;
}

.pdp-trust-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.pdp-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border: 2px solid #E66426;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E66426;
}

.pdp-icon svg {
  width: 16px;
  height: 16px;
}



/* Mobile fixes */
@media screen and (max-width: 749px) {
  .product__title h1,
  .product__title {
    font-size: 2.5rem !important;
  }
.pdp-trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem; /* tighter spacing */
    margin-top: 12px;
    padding-top: 10px;
  }

  .pdp-trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    font-size: 11px; /* smaller text so it fits */
    line-height: 1.15;
  }

  .pdp-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
  }

  .pdp-icon svg {
    width: 13px;
    height: 13px;
  }
}
  
}