/** Shopify CDN: Minification failed

Line 14:8 Unexpected "{"
Line 14:17 Expected ":"

**/
/* ============================================================
   JET INJECT — Buy Section Custom Styles
   Reference design: Jet Inject Full Kit product page
   Only affects the buy section of the product page.
   ============================================================ */

/* ---- Price Display: Large bold sale price + crossed-out original ---- */
#price-{{ section.id }} .price--large,
.product__info-container .price--large {
  font-size: 2.6rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.2 !important;
}

.product__info-container .price--large .price-item--sale {
  font-size: 2.6rem !important;
  font-weight: 800 !important;
  color: #111 !important;
}

.product__info-container .price--large .price-item--regular {
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  color: #999 !important;
  text-decoration: line-through !important;
}

/* Sale badge — red pill */
.product__info-container .price__badge-sale,
.product__info-container .badge.price__badge-sale {
  background: #ef4444 !important;
  color: #fff !important;
  border-radius: 20px !important;
  padding: 3px 10px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  vertical-align: middle !important;
  margin-left: 8px !important;
  display: inline-block !important;
}

/* ---- Product description text (subtitle below price) ---- */
.product__info-container .product__text:not(.caption-with-letter-spacing) {
  font-size: 14px !important;
  color: #555 !important;
  line-height: 1.5 !important;
}

/* ---- Variant Pill Buttons ---- */
.product-form__input--pill input[type='radio'] + label {
  border: 1.5px solid #d1d5db !important;
  border-radius: 8px !important;
  padding: 10px 18px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  color: #111 !important;
  background: #fff !important;
  transition: border-color 0.15s ease, background 0.15s ease !important;
  margin: 5px 6px 5px 0 !important;
}

.product-form__input--pill input[type='radio'] + label:hover {
  border-color: #111 !important;
}

.product-form__input--pill input[type='radio']:checked + label {
  background: #111 !important;
  color: #fff !important;
  border-color: #111 !important;
}

/* ---- Quantity Selector ---- */
.quantity {
  border: 1.5px solid #d1d5db !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  height: 46px !important;
  width: fit-content !important;
}

.quantity__button {
  background: #f9fafb !important;
  border: none !important;
  width: 40px !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background 0.12s ease !important;
  color: #111 !important;
}

.quantity__button:hover {
  background: #f3f4f6 !important;
}

.quantity__input {
  border: none !important;
  border-left: 1.5px solid #d1d5db !important;
  border-right: 1.5px solid #d1d5db !important;
  text-align: center !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  width: 52px !important;
  height: 100% !important;
  background: #fff !important;
  color: #111 !important;
  -moz-appearance: textfield !important;
}

.quantity__input::-webkit-inner-spin-button,
.quantity__input::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* ---- Trust Badges Grid — always 4 columns ---- */
.ji-trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 20px 0 24px;
  width: 100%;
}

/* Only collapse to 2-col on very small screens */
@media screen and (max-width: 479px) {
  .ji-trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ji-trust-badge {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px 8px 12px;
  text-align: center;
  background: #fff;
}

.ji-trust-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  height: 36px;
}

.ji-trust-badge__icon svg {
  width: 32px;
  height: 32px;
  stroke: #111;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ji-trust-badge__title {
  font-size: 11.5px;
  font-weight: 700;
  color: #111;
  margin: 0 0 4px;
  line-height: 1.3;
}

.ji-trust-badge__desc {
  font-size: 10.5px;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

/* ---- Add to Cart Button ---- */
.product-form__submit.ji-btn-atc {
  display: block !important;
  width: 100% !important;
  max-width: 44rem !important;
  background: #111 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 18px 24px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.18s ease, transform 0.12s ease !important;
  margin-bottom: 12px !important;
  text-align: center !important;
  line-height: 1.2 !important;
  min-height: 58px !important;
}

.product-form__submit.ji-btn-atc:hover:not([disabled]) {
  background: #222 !important;
}

.product-form__submit.ji-btn-atc:active:not([disabled]) {
  transform: scale(0.98) !important;
}

.product-form__submit.ji-btn-atc[disabled],
.product-form__submit.ji-btn-atc[aria-disabled='true'] {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/* Buy It Now removed per design spec */

/* ---- Trust Strip ---- */
.ji-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  max-width: 44rem;
  margin: 0 0 16px;
  font-size: 12px;
  color: #555;
}

.ji-trust-strip__item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ji-trust-strip__item svg {
  width: 15px;
  height: 15px;
  stroke: #555;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.ji-trust-strip__dot {
  color: #ccc;
  font-size: 10px;
}

/* ---- Payment Icons Row ---- */
.ji-payment-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 44rem;
  margin: 0 0 16px;
}

.ji-payment-icon {
  height: 28px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---- In Stock Badge ---- */
.ji-stock-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  max-width: 44rem;
  font-size: 14px;
  color: #333;
  margin: 0 0 14px;
}

.ji-stock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  display: inline-block;
}

.ji-stock-badge strong {
  color: #16a34a;
  font-weight: 700;
}

/* ---- Disclaimer ---- */
.ji-disclaimer {
  max-width: 44rem;
  text-align: center;
  font-size: 12px;
  color: #888;
  line-height: 1.5;
  margin: 0 0 8px;
}

/* ---- Product form buttons container ---- */
.product-form__buttons {
  max-width: 44rem;
}

/* ---- Badge pill for trust text (header badge) ---- */
.ji-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f3f4f6;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: #333;
  font-weight: 500;
  margin-bottom: 12px;
}

.ji-header-badge svg {
  width: 16px;
  height: 16px;
  stroke: #333;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
