.charly-quantity-breaks {
  display: block;
  margin: 4px 0 20px;
  padding: 18px;
  border: 1px solid #ded5cc;
  border-radius: 16px;
  background: #fbf8f3;
  color: #241c2b;
}

.charly-quantity-breaks.m\:hidden {
  display: none;
}

.charly-quantity-breaks__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.charly-quantity-breaks__eyebrow,
.charly-quantity-breaks__title,
.charly-quantity-breaks__intro,
.charly-quantity-breaks__status {
  margin: 0;
}

.charly-quantity-breaks__eyebrow {
  color: #7657c4;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.charly-quantity-breaks__title {
  margin-top: 3px;
  color: #241c2b;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.25;
}

.charly-quantity-breaks__auto {
  max-width: 150px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #5f439f;
  background: #eee8fa;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.charly-quantity-breaks__intro {
  margin-top: 8px;
  color: #655c68;
  font-size: 12px;
  line-height: 1.45;
}

.charly-quantity-breaks__options {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.charly-quantity-breaks__option {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 70px;
  padding: 12px 14px;
  border: 1px solid #ded5cc;
  border-radius: 13px;
  color: #241c2b;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}

.charly-quantity-breaks__option:hover {
  border-color: #9d87d6;
  transform: translateY(-1px);
}

.charly-quantity-breaks__option:focus-visible {
  outline: 3px solid rgba(118, 87, 196, .28);
  outline-offset: 2px;
}

.charly-quantity-breaks__option.is-selected {
  border-color: #7657c4;
  background: #f7f3ff;
  box-shadow: 0 0 0 1px #7657c4, 0 8px 22px rgba(80, 56, 132, .10);
}

.charly-quantity-breaks__radio {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid #a69da8;
  border-radius: 50%;
}

.charly-quantity-breaks__radio::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7657c4;
  content: '';
  opacity: 0;
  transform: scale(.5);
  transition: opacity .18s ease, transform .18s ease;
}

.charly-quantity-breaks__option.is-selected .charly-quantity-breaks__radio {
  border-color: #7657c4;
}

.charly-quantity-breaks__option.is-selected .charly-quantity-breaks__radio::after {
  opacity: 1;
  transform: scale(1);
}

.charly-quantity-breaks__copy,
.charly-quantity-breaks__price {
  display: flex;
  flex-direction: column;
}

.charly-quantity-breaks__label {
  font-size: 15px;
  font-weight: 750;
  line-height: 1.25;
}

.charly-quantity-breaks__discount {
  margin-top: 3px;
  color: #7657c4;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
}

.charly-quantity-breaks__price {
  align-items: flex-end;
  min-width: 92px;
  text-align: right;
}

.charly-quantity-breaks__price strong {
  color: #a43f5d;
  font-size: 16px;
  line-height: 1.2;
}

.charly-quantity-breaks__price small,
.charly-quantity-breaks__price span {
  color: #655c68;
  font-size: 10px;
  line-height: 1.3;
}

.charly-quantity-breaks__badge {
  position: absolute;
  top: -8px;
  right: 12px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #fff;
  background: #7657c4;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.charly-quantity-breaks__status {
  min-height: 18px;
  margin-top: 10px;
  color: #655c68;
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 480px) {
  .charly-quantity-breaks {
    padding: 15px;
    border-radius: 14px;
  }

  .charly-quantity-breaks__heading {
    display: block;
  }

  .charly-quantity-breaks__auto {
    display: inline-block;
    max-width: none;
    margin-top: 8px;
  }

  .charly-quantity-breaks__option {
    grid-template-columns: 18px minmax(0, 1fr) auto;
    gap: 9px;
    padding: 11px;
  }

  .charly-quantity-breaks__price {
    min-width: 82px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .charly-quantity-breaks__option,
  .charly-quantity-breaks__radio::after {
    transition: none;
  }
}

.charly-quantity-breaks__offer {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid #ded5cc;
  color: #655c68;
  font-size: 11px;
  line-height: 1.45;
}

.charly-quantity-breaks__offer[hidden] {
  display: none;
}
