/* Existing BioHack customer upgrade checkout */
.biohack-upgrade-checkout .checkout-page-heading h1 {
  max-width: 760px;
}

.biohack-upgrade-checkout .cart-product-options {
  gap: 14px;
}

.biohack-upgrade-checkout .checkout-field-email.is-email-locked input[readonly] {
  border-color: #a8d9cf;
  background: #f1f8f6;
  color: #284d47;
  cursor: not-allowed;
}

.biohack-upgrade-checkout .checkout-field-email.is-email-locked input[readonly]:focus {
  border-color: #a8d9cf;
  outline: none;
  box-shadow: none;
}

.biohack-upgrade-checkout .cart-product-option.is-customer-selectable {
  cursor: pointer;
}

.biohack-upgrade-checkout .cart-product-option.is-upgrade-included {
  cursor: default;
}

.biohack-upgrade-checkout .cart-product-option.is-upgrade-included input:disabled {
  opacity: 1;
}

.biohack-upgrade-checkout .cart-product-option.is-upgrade-included .cart-product-check {
  opacity: 1;
}

.biohack-upgrade-checkout .checkout-upsell {
  display: block;
  margin-top: 14px;
}

.biohack-upgrade-checkout .checkout-upsell[hidden] {
  display: none;
}

.checkout-customer-add-on {
  overflow: hidden;
  border: 1px solid #9ed9cf;
  border-radius: 14px;
  background: #f5fcfa;
  box-shadow: 0 10px 24px rgba(16, 92, 81, 0.08);
}

.checkout-customer-add-on-label {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  border-bottom: 1px solid #cce9e3;
  background: #e7f7f3;
  color: #0b695e;
  font-size: 12px;
  font-weight: 800;
}

.checkout-customer-add-on-label span {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.checkout-customer-add-on-product {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
}

.checkout-customer-add-on-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 76px;
  overflow: hidden;
  border: 1px solid #dbe6e4;
  border-radius: 7px;
  background: #fff;
}

.checkout-customer-add-on-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.checkout-customer-add-on-copy {
  min-width: 0;
}

.checkout-customer-add-on-copy small,
.checkout-customer-add-on-copy strong,
.checkout-customer-add-on-copy span {
  display: block;
}

.checkout-customer-add-on-copy small {
  margin-bottom: 3px;
  color: #55716c;
  font-size: 11px;
  font-weight: 700;
}

.checkout-customer-add-on-copy > strong {
  color: #123c36;
  font-size: 15px;
  line-height: 1.35;
}

.checkout-customer-add-on-copy > span {
  margin-top: 5px;
  color: #47645f;
  font-size: 13px;
}

.checkout-customer-add-on-copy > span b {
  color: #0b695e;
}

.checkout-customer-add-on-product .button {
  min-width: 154px;
  min-height: 44px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .checkout-customer-add-on-label {
    align-items: flex-start;
    padding: 8px 11px;
  }

  .checkout-customer-add-on-product {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
    padding: 11px;
  }

  .checkout-customer-add-on-cover {
    width: 52px;
    height: 66px;
  }

  .checkout-customer-add-on-copy > strong {
    font-size: 14px;
  }

  .checkout-customer-add-on-copy > span {
    font-size: 12px;
    line-height: 1.45;
  }

  .checkout-customer-add-on-product .button {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }
}
