.pisell-lowcode-adjust-price-wrap {
  width: 380px;
  border-radius: 10px;
  background-color: var(--pisell-adjust-price-background-color);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s ease;

  // 浅色模式样式
  &.pisell-lowcode-adjust-price-light {
    .pisell-lowcode-segmented-item-label {
      color: #667085;
    }
  }

  // 深色模式样式
  &.pisell-lowcode-adjust-price-dark {
    .pisell-lowcode-segmented-item-label {
      color: #d0d5dd;
    }
  }

  .pisell-lowcode-segmented {
    background: var(--pisell-adjust-price-container-background-color);
    :hover {
      color: var(--pisell-adjust-price-text-color);
    }
    .pisell-lowcode-segmented-item-selected {
      background: var(--pisell-adjust-price-button-background-color);
      .pisell-lowcode-segmented-item-label {
        color: var(--pisell-adjust-price-text-color) !important;
      }
    }
  }

  .pisell-lowcode-adjust-price-amount-wrap {
    padding: 10px;
    border-radius: 10px;
    background: var(--pisell-adjust-price-container-background-color);
  }
  .pisell-low-code-adjust-price-total {
    color: var(--pisell-adjust-price-main-text-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 30px; /* 150% */
  }
  .pisell-low-code-adjust-price-amount-desc {
    color: var(--pisell-adjust-price-sub-text-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
  }
  .pisell-low-code-adjust-price-amount-desc-error {
    color: var(--Error-600, #d92d20);
  }
}
