.sg-block {
  font-family: var(--font-body, sans-serif);
  font-size: .94rem;
  /* Remove o max-width para ocupar 100% do container pai */
  display: inline-flex;
  flex-direction: column;
  gap: .32rem;
  width: 100%;
  box-sizing: border-box;
} 

.sg-pix {
  color: #168a55!important;
  font-weight: 600;
}
.sg-pix em {
  font-style: normal;
  font-weight: 500;
  color: #4fb07c;
  margin-left: .15rem;
}


/* Container do accordion */
.sg-parc {
  position: relative;
  width: 250px;
}

/* Summary ocupa 100% e não pula de linha */
.sg-parc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .4rem;
  cursor: pointer;
  list-style: none;
  padding: .46rem .85rem;
  background: #fafafa;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  transition: background .25s;
  width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sg-parc summary:hover {
  background: #f1f1f1;
}
.sg-parc summary svg {
  flex-shrink: 0;
  transition: transform .3s;
}
.sg-parc[open] summary svg {
  transform: rotate(180deg);
}
.sg-parc summary::-webkit-details-marker {
  display: none;
}

/* A lista */
.sg-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.sg-list li {
  display: grid;
  grid-template-columns: auto auto 1fr;
  column-gap: .4rem;
  padding: .38rem .85rem;
  border-top: 1px dashed #ececec;
  font-size: .88rem;
}
.sg-list li:first-child {
  border-top: none;
}

.sg-parc-val {
  min-width: 80px;
  display: inline-block;
}
.sg-total {
  justify-self: end;

  font-size: .8em;
}

/* No checkout, reduz um pouquinho */
.sg-block--checkout {
  font-size: .92rem;
}
